strcasecmp() is unfortunately not universally available, along with
strings.h. Fix the build by replacing strcasecmp() with
g_ascii_strcasecmp(), and remove the strings.h include.
https://bugzilla.gnome.org/show_bug.cgi?id=747604
#include "css-node-tree.h"
-#include <strings.h>
-
#include "gtktreemodelcssnode.h"
#include <gtk/gtktreeview.h>
#include "gtk/gtkwidgetprivate.h"
char **ap = (char **) a;
char **bp = (char **) b;
- return strcasecmp (*ap, *bp);
+ return g_ascii_strcasecmp (*ap, *bp);
}
static void